home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / wsc4c10.zip / SIMPLE._W_ < prev    next >
Text File  |  1996-09-10  |  803b  |  38 lines

  1. #
  2. # Watcom makefile for SIMPLE
  3. #
  4. # TO MAKE: wmake -f simple._W_
  5. #
  6.  
  7. FLAGS = -c -oaxt -d2 -w4 -zW
  8.  
  9. OBJS = simple.obj about.obj config.obj line.obj menu.obj paint.obj wscerror.obj
  10.  
  11. simple.exe: $(OBJS) simple.res simple.def wsc.lib wtmlib.lib
  12.    wlink @simple.lnk
  13.    wrc simple.res
  14.  
  15. simple.res: $(OBJS) simple.rc
  16.    wrc -r -bt=windows simple.rc
  17.  
  18. about.obj: about.c about.h
  19.    wcl $(FLAGS)  about.c
  20.  
  21. config.obj: config.c config.h wsc.h
  22.     wcl $(FLAGS)  config.c
  23.  
  24. line.obj: line.c line.h wsc.h
  25.     wcl $(FLAGS)  line.c
  26.  
  27. menu.obj: menu.c menu.h wsc.h
  28.     wcl $(FLAGS)  menu.c
  29.  
  30. paint.obj: paint.c paint.h wsc.h
  31.     wcl $(FLAGS)  paint.c
  32.  
  33. simple.obj: simple.c simple.h wsc.h
  34.    wcl $(FLAGS)  simple.c
  35.  
  36. wscerror.obj: wscerror.c wscerror.h wsc.h
  37.    wcl $(FLAGS)  wscerror.c
  38.